home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / snoop / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  237 b   |  20 lines

  1. #!smake
  2. #
  3. #    snoop make file
  4. #
  5. include ${ROOT}/usr/include/make/commondefs
  6.  
  7. TARGETS = snoop
  8.  
  9. CFILES    = snoop.c
  10.  
  11. LLDLIBS= -lgl
  12.  
  13. default all: $(TARGETS)
  14.  
  15. include ${COMMONRULES}
  16.  
  17.  
  18. ${TARGETS}: ${OBJECTS}
  19.     ${CCF} -o $@ ${OBJECTS} ${LDFLAGS}
  20.